home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / gcc / ixemsdk.lha / man / cat2 / symlink.0 < prev    next >
Text File  |  1996-09-02  |  4KB  |  85 lines

  1.  
  2. SYMLINK(2)                 UNIX Programmer's Manual                 SYMLINK(2)
  3.  
  4. NNAAMMEE
  5.      ssyymmlliinnkk - make symbolic link to a file
  6.  
  7. SSYYNNOOPPSSIISS
  8.      ##iinncclluuddee <<uunniissttdd..hh>>
  9.  
  10.      _i_n_t
  11.      ssyymmlliinnkk(_c_o_n_s_t _c_h_a_r _*_n_a_m_e_1, _c_o_n_s_t _c_h_a_r _*_n_a_m_e_2)
  12.  
  13. DDEESSCCRRIIPPTTIIOONN
  14.      A symbolic link _n_a_m_e_2 is created to _n_a_m_e_1 (_n_a_m_e_2 is the name of the file
  15.      created, _n_a_m_e_1 is the string used in creating the symbolic link).  Either
  16.      name may be an arbitrary path name; the files need not be on the same
  17.      file system.
  18.  
  19. RREETTUURRNN VVAALLUUEESS
  20.      Upon successful completion, a zero value is returned.  If an error oc-
  21.      curs, the error code is stored in _e_r_r_n_o and a -1 value is returned.
  22.  
  23. EERRRROORRSS
  24.      The symbolic link succeeds unless:
  25.  
  26.      [ENOTDIR]     A component of the _n_a_m_e_2 prefix is not a directory.
  27.  
  28.      [ENAMETOOLONG]
  29.                    A component of a pathname exceeded {NAME_MAX} characters,
  30.                    or an entire path name exceeded {PATH_MAX} characters.
  31.  
  32.      [ENOENT]      The named file does not exist.
  33.  
  34.      [EACCES]      A component of the _n_a_m_e_2 path prefix denies search permis-
  35.                    sion.
  36.  
  37.      [ELOOP]       Too many symbolic links were encountered in translating the
  38.                    pathname.
  39.  
  40.      [EEXIST]      _N_a_m_e_2 already exists.
  41.  
  42.      [EIO]         An I/O error occurred while making the directory entry for
  43.                    _n_a_m_e_2, or allocating the inode for _n_a_m_e_2, or writing out
  44.                    the link contents of _n_a_m_e_2.
  45.  
  46.      [EROFS]       The file _n_a_m_e_2 would reside on a read-only file system.
  47.  
  48.      [ENOSPC]      The directory in which the entry for the new symbolic link
  49.                    is being placed cannot be extended because there is no
  50.                    space left on the file system containing the directory.
  51.  
  52.      [ENOSPC]      The new symbolic link cannot be created because there there
  53.                    is no space left on the file system that will contain the
  54.                    symbolic link.
  55.  
  56.      [ENOSPC]      There are no free inodes on the file system on which the
  57.                    symbolic link is being created.
  58.  
  59.      [EDQUOT]      The directory in which the entry for the new symbolic link
  60.                    is being placed cannot be extended because the user's quota
  61.                    of disk blocks on the file system containing the directory
  62.                    has been exhausted.
  63.  
  64.      [EDQUOT]      The new symbolic link cannot be created because the user's
  65.                    quota of disk blocks on the file system that will contain
  66.  
  67.                    the symbolic link has been exhausted.
  68.  
  69.      [EDQUOT]      The user's quota of inodes on the file system on which the
  70.                    symbolic link is being created has been exhausted.
  71.  
  72.      [EIO]         An I/O error occurred while making the directory entry or
  73.                    allocating the inode.
  74.  
  75.      [EFAULT]      _N_a_m_e_1 or _n_a_m_e_2 points outside the process's allocated ad-
  76.                    dress space.
  77.  
  78. SSEEEE AALLSSOO
  79.      link(2),  ln(1),  unlink(2)
  80.  
  81. HHIISSTTOORRYY
  82.      The ssyymmlliinnkk() function call appeared in 4.2BSD.
  83.  
  84. 4.2 Berkeley Distribution        June 4, 1993                                2
  85.